home *** CD-ROM | disk | FTP | other *** search
- onClipEvent(enterFrame){
- if(_root.paused)
- {
- return undefined;
- }
- if(_root.car.dead)
- {
- _visible = false;
- return undefined;
- }
- if(!_root.car.onfloor)
- {
- if(Key.isDown(39))
- {
- _visible = true;
- if(!sound)
- {
- if(_root.sound)
- {
- _root.steamSide.start(0,99999);
- sound = true;
- }
- }
- }
- }
- if(!Key.isDown(39) or _root.car.onfloor or _root.fake._rotation > 20 or _root.fake._rotation < -20)
- {
- _visible = false;
- }
- if(!Key.isDown(39) or _root.car.onfloor)
- {
- sound = false;
- _root.steamSide.stop();
- }
- _X = _root.fake._x - 30;
- _Y = _root.fake._y - 14;
- }
-